home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / zvmem.c < prev    next >
C/C++ Source or Header  |  1997-05-05  |  11KB  |  370 lines

  1. /* Copyright (C) 1989, 1995, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zvmem.c */
  20. /* "Virtual memory" operators */
  21. #include "ghost.h"
  22. #include "gsstruct.h"
  23. #include "errors.h"
  24. #include "oper.h"
  25. #include "estack.h"            /* for checking in restore */
  26. #include "ialloc.h"
  27. #include "idict.h"            /* ditto */
  28. #include "igstate.h"
  29. #include "isave.h"
  30. #include "dstack.h"
  31. #include "stream.h"            /* for files.h */
  32. #include "files.h"            /* for e-stack processing */
  33. #include "store.h"
  34. #include "gsmatrix.h"            /* for gsstate.h */
  35. #include "gsstate.h"
  36.  
  37. #ifdef DEBUG
  38. /* Define whether we validate memory before/after save/restore. */
  39. /* Note that we only do this if DEBUG is set and -Z? is selected. */
  40. #define VALIDATE_BEFORE_SAVE
  41. #define VALIDATE_AFTER_SAVE
  42. #define VALIDATE_BEFORE_RESTORE
  43. #define VALIDATE_AFTER_RESTORE
  44. #endif
  45.  
  46. /* Make an invalid file object. */
  47. extern void make_invalid_file(P1(ref *)); /* in zfile.c */
  48.  
  49. /* 'Save' structure */
  50. typedef struct vm_save_s vm_save_t;
  51. struct vm_save_s {
  52.     gs_state *gsave;        /* old graphics state */
  53. };
  54. gs_private_st_ptrs1(st_vm_save, vm_save_t, "savetype",
  55.   vm_save_enum_ptrs, vm_save_reloc_ptrs, gsave);
  56.  
  57. /* Clean up the stacks and validate storage. */
  58. #if defined(VALIDATE_BEFORE_SAVE) || defined(VALIDATE_AFTER_SAVE) || defined(VALIDATE_BEFORE_RESTORE) || defined(VALIDATE_AFTER_RESTORE)
  59. private void
  60. ivalidate_clean_spaces(void)
  61. {    if ( gs_debug_c('?') )
  62.       { ref_stack_cleanup(&d_stack);
  63.         ref_stack_cleanup(&e_stack);
  64.         ref_stack_cleanup(&o_stack);
  65.         ivalidate_spaces();
  66.       }
  67. }
  68. #endif
  69.  
  70. /* - save <save> */
  71. int
  72. zsave(register os_ptr op)
  73. {    uint space = icurrent_space;
  74.     vm_save_t *vmsave;
  75.     ulong sid;
  76.     int code;
  77.     gs_state *prev;
  78.  
  79. #ifdef VALIDATE_BEFORE_SAVE
  80.     ivalidate_clean_spaces();
  81. #endif
  82.     ialloc_set_space(idmemory, avm_local);
  83.     vmsave = ialloc_struct(vm_save_t, &st_vm_save, "zsave");
  84.     ialloc_set_space(idmemory, space);
  85.     if ( vmsave == 0 )
  86.       return_error(e_VMerror);
  87.     sid = alloc_save_state(idmemory, vmsave);
  88.     if ( sid == 0 )
  89.     {    ifree_object(vmsave, "zsave");
  90.         return_error(e_VMerror);
  91.     }
  92.     if_debug2('u', "[u]vmsave 0x%lx, id = %lu\n",
  93.           (ulong)vmsave, (ulong)sid);
  94.     code = zgsave(op);
  95.     if ( code < 0 )
  96.       return code;
  97.     /* Cut the chain so we can't grestore past here. */
  98.     prev = gs_state_swap_saved(igs, (gs_state *)0);
  99.     code = zgsave(op);
  100.     if ( code < 0 )
  101.       return code;
  102.     vmsave->gsave = prev;
  103.     push(1);
  104.     make_tav(op, t_save, 0, saveid, sid);
  105. #ifdef VALIDATE_AFTER_SAVE
  106.     ivalidate_clean_spaces();
  107. #endif
  108.     return 0;
  109. }
  110.  
  111. /* <save> restore - */
  112. private int restore_check_operand(P2(os_ptr, alloc_save_t **));
  113. private int restore_check_stack(P3(const ref_stack *, const alloc_save_t *, bool));
  114. private void restore_fix_stack(P3(ref_stack *, const alloc_save_t *, bool));
  115. int
  116. zrestore(register os_ptr op)
  117. {    alloc_save_t *asave;
  118.     bool last;
  119.     vm_save_t *vmsave;
  120.     int code = restore_check_operand(op, &asave);
  121.  
  122.     if ( code < 0 )
  123.       return code;
  124.     if_debug2('u', "[u]vmrestore 0x%lx, id = %lu\n",
  125.           (ulong)alloc_save_client_data(asave),
  126.           (ulong)op->value.saveid);
  127. #ifdef VALIDATE_BEFORE_RESTORE
  128.     ivalidate_clean_spaces();
  129. #endif
  130.     /* Check the contents of the stacks. */
  131.     osp--;
  132.     {    int code;
  133.         if ( (code = restore_check_stack(&o_stack, asave, false)) < 0 ||
  134.              (code = restore_check_stack(&e_stack, asave, true)) < 0 ||
  135.              (code = restore_check_stack(&d_stack, asave, false)) < 0
  136.            )
  137.           {    osp++;
  138.             return code;
  139.           }
  140.     }
  141.     /* Reset l_new in all stack entries if the new save level is zero. */
  142.     /* Also do some special fixing on the e-stack. */
  143.     restore_fix_stack(&o_stack, asave, false);
  144.     restore_fix_stack(&e_stack, asave, true);
  145.     restore_fix_stack(&d_stack, asave, false);
  146.     /* Iteratively restore the state of memory, */
  147.     /* also doing a grestoreall at each step. */
  148.     do
  149.       {    vmsave = alloc_save_client_data(alloc_save_current(idmemory));
  150.         /* Restore the graphics state. */
  151.         gs_grestoreall(igs);
  152.         gs_state_swap_saved(gs_state_saved(igs), vmsave->gsave);
  153.         gs_grestore(igs);
  154.         gs_grestore(igs);
  155.         /*
  156.          * If alloc_save_space decided to do a second save, the vmsave
  157.          * object was allocated one save level less deep than the
  158.          * current level, so ifree_object won't actually free it;
  159.          * however, it points to a gsave object that definitely
  160.          * *has* been freed.  In order not to trip up the garbage
  161.          * collector, we clear the gsave pointer now.
  162.          */
  163.         vmsave->gsave = 0;
  164.         /* Now it's safe to restore the state of memory. */
  165.         last = alloc_restore_state_step(asave);
  166.       }
  167.     while ( !last );
  168.     { uint space = icurrent_space;
  169.       ialloc_set_space(idmemory, avm_local);
  170.       ifree_object(vmsave, "zrestore");
  171.       ialloc_set_space(idmemory, space);
  172.     }
  173.     dict_set_top();        /* reload dict stack cache */
  174. #ifdef VALIDATE_AFTER_RESTORE
  175.     ivalidate_clean_spaces();
  176. #endif
  177.     return 0;
  178. }
  179. /* Check the operand of a restore. */
  180. private int
  181. restore_check_operand(os_ptr op, alloc_save_t **pasave)
  182. {    vm_save_t *vmsave;
  183.     ulong sid;
  184.     alloc_save_t *asave;
  185.     check_type(*op, t_save);
  186.     vmsave = r_ptr(op, vm_save_t);
  187.     if ( vmsave == 0 )        /* invalidated save */
  188.       return_error(e_invalidrestore);
  189.     sid = op->value.saveid;
  190.     asave = alloc_find_save(idmemory, sid);
  191.     if ( asave == 0 )
  192.       return_error(e_invalidrestore);
  193.     *pasave = asave;
  194.     return 0;
  195. }
  196. /* Check a stack to make sure all its elements are older than a save. */
  197. private int
  198. restore_check_stack(const ref_stack *pstack, const alloc_save_t *asave,
  199.   bool is_estack)
  200. {    STACK_LOOP_BEGIN(pstack, bot, size)
  201.       {    const ref *stkp;
  202.         for ( stkp = bot; size; stkp++, size-- )
  203.           {    const void *ptr;
  204.             switch ( r_type(stkp) )
  205.               {
  206.               case t_array:
  207.                 ptr = stkp->value.refs; break;
  208.               case t_dictionary:
  209.                 ptr = stkp->value.pdict; break;
  210.               case t_file:
  211.                 /* Don't check executable or closed literal */
  212.                 /* files on the e-stack. */
  213.                 { stream *s;
  214.                   if ( is_estack &&
  215.                    (r_has_attr(stkp, a_executable) ||
  216.                     !file_is_valid(s, stkp))
  217.                  )
  218.                 continue;
  219.                 }
  220.                 ptr = stkp->value.pfile; break;
  221.               case t_name:
  222.                 /* Names are special because of how they are allocated. */
  223.                 if ( alloc_name_is_since_save(stkp, asave) )
  224.                   return_error(e_invalidrestore);
  225.                 continue;
  226.               case t_string:
  227.                 /* Don't check empty executable strings */
  228.                 /* on the e-stack. */
  229.                 if ( r_size(stkp) == 0 &&
  230.                  r_has_attr(stkp, a_executable) && is_estack
  231.                    )
  232.                   continue;
  233.                 ptr = stkp->value.bytes; break;
  234.               case t_mixedarray:
  235.               case t_shortarray:
  236.                 ptr = stkp->value.packed; break;
  237.               case t_device:
  238.                 ptr = stkp->value.pdevice; break;
  239.               case t_fontID:
  240.               case t_struct:
  241.               case t_astruct:
  242.                 ptr = stkp->value.pstruct; break;
  243.               default:
  244.                 continue;
  245.               }
  246.             if ( alloc_is_since_save(ptr, asave) )
  247.               return_error(e_invalidrestore);
  248.           }
  249.       }
  250.     STACK_LOOP_END(bot, size)
  251.     return 0;            /* OK */
  252. }
  253. /*
  254.  * If the new save level is zero, fix up the contents of a stack
  255.  * by clearing the l_new bit in all the entries (since we can't tolerate
  256.  * values with l_new set if the save level is zero).
  257.  * Also, in any case, fix up the e-stack by replacing empty executable
  258.  * strings and closed executable files that are newer than the save
  259.  * with canonical ones that aren't.
  260.  *
  261.  * Note that this procedure is only called if restore_check_stack succeeded.
  262.  */
  263. private void
  264. restore_fix_stack(ref_stack *pstack, const alloc_save_t *asave,
  265.   bool is_estack)
  266. {    STACK_LOOP_BEGIN(pstack, bot, size)
  267.       {    ref *stkp;
  268.         for ( stkp = bot; size; stkp++, size-- )
  269.           {    r_clear_attrs(stkp, l_new); /* always do it, no harm */
  270.             if ( is_estack )
  271.               {    ref ofile;
  272.                 ref_assign(&ofile, stkp);
  273.                 switch ( r_type(stkp) )
  274.                   {
  275.                   case t_string:
  276.                     if ( r_size(stkp) == 0 &&
  277.                     alloc_is_since_save(stkp->value.bytes,
  278.                                 asave)
  279.                        )
  280.                       {    make_empty_const_string(stkp,
  281.                                 avm_foreign);
  282.                     break;
  283.                       }
  284.                     continue;
  285.                   case t_file:
  286.                     if ( alloc_is_since_save(stkp->value.pfile,
  287.                                  asave)
  288.                        )
  289.                       {    make_invalid_file(stkp);
  290.                     break;
  291.                       }
  292.                     continue;
  293.                   default:
  294.                     continue;
  295.                   }
  296.                 r_copy_attrs(stkp, a_all | a_executable,
  297.                          &ofile);
  298.               }
  299.           }
  300.       }
  301.     STACK_LOOP_END(bot, size)
  302. }
  303.  
  304. /* - vmstatus <save_level> <vm_used> <vm_maximum> */
  305. private int
  306. zvmstatus(register os_ptr op)
  307. {    gs_memory_status_t mstat, dstat;
  308.     gs_memory_status(imemory, &mstat);
  309.     if ( imemory == imemory_global )
  310.       {    gs_memory_status_t sstat;
  311.         gs_memory_status(imemory_system, &sstat);
  312.         mstat.allocated += sstat.allocated;
  313.         mstat.used += sstat.used;
  314.       }
  315.     gs_memory_status(&gs_memory_default, &dstat);
  316.     push(3);
  317.     make_int(op - 2, alloc_save_level(idmemory));
  318.     make_int(op - 1, mstat.used);
  319.     make_int(op, mstat.allocated + dstat.allocated - dstat.used);
  320.     return 0;
  321. }
  322.  
  323. /* ------ Non-standard extensions ------ */
  324.  
  325. /* <save> .forgetsave - */
  326. private int
  327. zforgetsave(register os_ptr op)
  328. {    alloc_save_t *asave;
  329.     vm_save_t *vmsave;
  330.     int code = restore_check_operand(op, &asave);
  331.     if ( code < 0 )
  332.       return 0;
  333.     vmsave = alloc_save_client_data(asave);
  334.     /* Reset l_new in all stack entries if the new save level is zero. */
  335.     restore_fix_stack(&o_stack, asave, false);
  336.     restore_fix_stack(&e_stack, asave, false);
  337.     restore_fix_stack(&d_stack, asave, false);
  338.     /* Forget the gsaves, by deleting the bottom gstate on */
  339.     /* the current stack and the top one on the saved stack and then */
  340.     /* concatenating the stacks together. */
  341.       {    gs_state *pgs = igs;
  342.         gs_state *last;
  343.         while ( gs_state_saved(last = gs_state_saved(pgs)) != 0 )
  344.           pgs = last;
  345.         gs_state_swap_saved(last, vmsave->gsave);
  346.         gs_grestore(last);
  347.         gs_grestore(last);
  348.       }
  349.     /* Forget the save in the memory manager. */
  350.     alloc_forget_save(asave);
  351.     { uint space = icurrent_space;
  352.       ialloc_set_space(idmemory, avm_local);
  353.     /* See above for why we clear the gsave pointer here. */
  354.       vmsave->gsave = 0;
  355.       ifree_object(vmsave, "zrestore");
  356.       ialloc_set_space(idmemory, space);
  357.     }
  358.     pop(1);
  359.     return 0;
  360. }
  361.  
  362. /* ------ Initialization procedure ------ */
  363.  
  364. BEGIN_OP_DEFS(zvmem_op_defs) {
  365.     {"1.forgetsave", zforgetsave},
  366.     {"1restore", zrestore},
  367.     {"0save", zsave},
  368.     {"0vmstatus", zvmstatus},
  369. END_OP_DEFS(0) }
  370.